home *** CD-ROM | disk | FTP | other *** search
/ Champak 29 / Volume 29 - JOGO DISK .iso / Games / jungle_adventure.swf / scripts / __Packages / SSShapeVertex.as < prev    next >
Text File  |  2006-11-29  |  343b  |  17 lines

  1. class SSShapeVertex extends Vector
  2. {
  3.    var props = SSGlobal.EDGE_DEFAULT;
  4.    var scale = 0;
  5.    function SSShapeVertex(x, y, props)
  6.    {
  7.       super();
  8.       this.x = x;
  9.       this.y = y;
  10.       this.props = props;
  11.    }
  12.    function toString()
  13.    {
  14.       return "ShapeVert (" + this.x + "," + this.y + "," + this.z + ")";
  15.    }
  16. }
  17.